home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / bbs / tg_os2.zip / STARTDOS.ZIP / DPMI.CMD < prev    next >
OS/2 REXX Batch file  |  1993-10-15  |  224b  |  12 lines

  1. /* turns DPMI on  */
  2.  
  3. if 'STARTDOS' <> address()  then do
  4.   say 'Expected STARTDOS environment'
  5.   return 2
  6. end
  7.  
  8. rc = AddDosSetting( "DPMI_DOS_API=ENABLED" );
  9. rc = AddDosSetting( "DPMI_MEMORY_LIMIT=8" );
  10.  
  11. return 0
  12.